From 8e4b8b21686b4602ffdd3cca8f7a39f151d01614 Mon Sep 17 00:00:00 2001 From: Ewan Higgs Date: Mon, 27 Feb 2017 22:58:13 +0100 Subject: [PATCH] Remove tab characters. :bowing_man: --- tests/init.rs | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/tests/init.rs b/tests/init.rs index 73947e54c..a85757325 100644 --- a/tests/init.rs +++ b/tests/init.rs @@ -95,17 +95,17 @@ fn bin_already_exists(explicit: bool, rellocation: &str, needs_bin_section: bool File::open(&sourcefile_path).unwrap().read_to_end(&mut new_content).unwrap(); assert_eq!(Vec::from(content as &[u8]), new_content); - let mut cargo_content = String::new(); + let mut cargo_content = String::new(); File::open(&paths::root().join("foo/Cargo.toml")).unwrap() .read_to_string(&mut cargo_content).unwrap(); - // Check that Cargo.toml has a bin section pointing to the correct location (if needed) - if needs_bin_section { - assert!(cargo_content.contains(r#"[[bin]]"#)); + // Check that Cargo.toml has a bin section pointing to the correct location (if needed) + if needs_bin_section { + assert!(cargo_content.contains(r#"[[bin]]"#)); assert_that(&paths::root().join("foo/src/main.rs"), is_not(existing_file())); - } else { - assert!(!cargo_content.contains(r#"[[bin]]"#)); + } else { + assert!(!cargo_content.contains(r#"[[bin]]"#)); assert_that(&paths::root().join("foo/src/main.rs"), existing_file()); - } + } } #[test] @@ -226,17 +226,17 @@ fn lib_already_exists(rellocation: &str, needs_lib_section: bool) { File::open(&sourcefile_path).unwrap().read_to_end(&mut new_content).unwrap(); assert_eq!(Vec::from(content as &[u8]), new_content); - let mut cargo_content = String::new(); + let mut cargo_content = String::new(); File::open(&paths::root().join("foo/Cargo.toml")).unwrap() .read_to_string(&mut cargo_content).unwrap(); - // Check that Cargo.toml has a lib section pointing to the correct location (if needed) - if needs_lib_section { - assert!(cargo_content.contains(r#"[lib]"#)); + // Check that Cargo.toml has a lib section pointing to the correct location (if needed) + if needs_lib_section { + assert!(cargo_content.contains(r#"[lib]"#)); assert_that(&paths::root().join("foo/src/lib.rs"), is_not(existing_file())); - } else { - assert!(!cargo_content.contains(r#"[lib]"#)); + } else { + assert!(!cargo_content.contains(r#"[lib]"#)); assert_that(&paths::root().join("foo/src/lib.rs"), existing_file()); - } + } } -- 2.30.2